Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 382 Bytes

4.9.10 - Coroutine/PostgreSQL->metaData.md

File metadata and controls

18 lines (14 loc) · 382 Bytes

Coroutine\PostgreSQL->metaData

查看表的元数据 异步非阻塞协程版

function Coroutine\PostgreSQL->metaData(String $tableName);

example:

go(function () {
    $a = new Swoole\Coroutine\PostgreSQL();
    $conn  = $a -> connect ("host=127.0.0.1 port=5432 dbname=test user=wuzhenyu");
    $result = $a->metaData('test');
    var_dump($result);
});